home *** CD-ROM | disk | FTP | other *** search
/ Imagine! / Imagine (Wayzata Technology) (1995).iso / mac / Macfiles / Imagine / 00001_Script_1 next >
Text File  |  1995-08-24  |  635b  |  29 lines

  1. --QuickTime  
  2.  
  3. on startMovie
  4.   if the quickTimePresent <> 1 then
  5.     alert "This file requires the QuickTimeÖ system extension.  Please place the QuickTime system extention in your system folder and restart your Macintosh before running this file."
  6.   end if
  7.   
  8.   if the soundLevel = 0 then
  9.     set the soundLevel to 4
  10.   end if
  11.   
  12.   set the colorDepth to 8
  13.   
  14.   puppetSprite 2, TRUE
  15.   puppetSprite 11, TRUE
  16.   puppetSprite 14, TRUE
  17.   puppetSprite 16, TRUE
  18.   
  19.   
  20. end startMovie
  21.  
  22. on puppetsOff
  23.   puppetSprite 2, FALSE
  24.   puppetSprite 11, FALSE
  25.   puppetSprite 14, FALSE
  26.   puppetSprite 16, FALSE
  27.   updateStage
  28. end
  29.